77b27f5d71bc4508204392c253feb2d61acd60b7,core/src/main/java/com/afollestad/materialdialogs/internal/MDTintHelper.java,MDTintHelper,setTint,#RadioButton#number#,30

Before Change


        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            radioButton.setButtonTintList(sl);
        } else {
            Drawable d = DrawableCompat.wrap(ContextCompat.getDrawable(radioButton.getContext(), R.drawable.abc_btn_radio_material));
            DrawableCompat.setTintList(d, sl);
            radioButton.setButtonDrawable(d);
        }

After Change


        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            radioButton.setButtonTintList(sl);
        } else {
            Drawable radioVector = VectorDrawableCompat.create(radioButton.getContext().getResources(),
                    R.drawable.abc_btn_radio_material, null);
            Drawable d = DrawableCompat.wrap(radioVector);
            DrawableCompat.setTintList(d, sl);
            radioButton.setButtonDrawable(d);